home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / local_argument.e < prev    next >
Text File  |  2000-03-25  |  4KB  |  156 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. deferred class LOCAL_ARGUMENT
  17.    --
  18.    -- Common root to handle local variables (LOCAL_NAME) or formal
  19.    -- argument names (ARGUMENT_NAME).
  20.    --
  21.  
  22. inherit NAME; EXPRESSION;
  23.  
  24. feature
  25.  
  26.    start_position: POSITION;
  27.          -- Of the first character of the name.
  28.  
  29.    is_void: BOOLEAN is false;
  30.  
  31.    is_manifest_string: BOOLEAN is false;
  32.  
  33.    is_manifest_array: BOOLEAN is false;
  34.  
  35.    is_current: BOOLEAN is false;
  36.  
  37.    is_result: BOOLEAN is false;
  38.  
  39.    can_be_dropped: BOOLEAN is true;
  40.  
  41.    c_simple: BOOLEAN is true;
  42.  
  43.    is_pre_computable: BOOLEAN is false;
  44.  
  45.    is_static: BOOLEAN is false;
  46.  
  47.    use_current: BOOLEAN is false;
  48.  
  49.    to_string: STRING is
  50.       deferred
  51.       end;
  52.  
  53.    rank: INTEGER is
  54.          -- in the corresponding flat list.
  55.       deferred
  56.       ensure
  57.          Result >= 1
  58.       end;
  59.  
  60.    frozen stupid_switch(r: ARRAY[RUN_CLASS]): BOOLEAN is
  61.       do
  62.          if small_eiffel.stupid_switch(result_type,r) then
  63.             Result := true;
  64.          end;
  65.       end;
  66.  
  67.    frozen static_result_base_class: BASE_CLASS is
  68.       local
  69.          bcn: CLASS_NAME;
  70.       do
  71.          bcn := result_type.static_base_class_name;
  72.          if bcn /= Void then
  73.             Result := bcn.base_class;
  74.          end;
  75.       end;
  76.  
  77.    frozen afd_check is
  78.       do
  79.       end;
  80.  
  81.    frozen static_value: INTEGER is
  82.       do
  83.       end;
  84.  
  85.    frozen to_key: STRING is
  86.       do
  87.          Result := to_string;
  88.       end;
  89.  
  90.    frozen collect_c_tmp is
  91.       do
  92.       end;
  93.  
  94.    frozen c_declare_for_old is
  95.       do
  96.       end;
  97.  
  98.    frozen compile_to_c_old is
  99.       do
  100.       end;
  101.  
  102.    frozen compile_to_jvm_old is
  103.       do
  104.       end;
  105.  
  106.    frozen compile_target_to_jvm is
  107.       do
  108.          standard_compile_target_to_jvm;
  109.       end;
  110.  
  111.    frozen precedence: INTEGER is
  112.       do
  113.          Result := atomic_precedence;
  114.       end;
  115.  
  116.    frozen print_as_target is
  117.       do
  118.          fmt.put_string(to_string);
  119.          fmt.put_character('.');
  120.       end;
  121.  
  122.    frozen short is
  123.       local
  124.          i: INTEGER;
  125.          c: CHARACTER;
  126.       do
  127.          short_print.hook("Ban");
  128.          from
  129.             i := 1;
  130.          until
  131.             i > to_string.count
  132.          loop
  133.             c := to_string.item(i);
  134.             if c = '_' then
  135.                short_print.hook_or("Uan","_");
  136.             else
  137.                short_print.a_character(c);
  138.             end;
  139.             i := i + 1;
  140.          end;
  141.          short_print.hook("Aan");
  142.       end;
  143.  
  144.    frozen short_target is
  145.       do
  146.          short;
  147.          short_print.a_dot;
  148.       end;
  149.  
  150. invariant
  151.  
  152.    not start_position.is_unknown;
  153.  
  154. end -- LOCAL_ARGUMENT
  155.  
  156.